home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 2 / CU Amiga Magazine's Super CD-ROM 02 (1996)(EMAP Images)(GB)[!][issue 1996-04].iso / magazine / amiga_e / amigae.june.archive / 000079_crash!minyos.xx….OZ.AU!s924723_Sun, 13 Jun 93 19:47:01 PST.msg < prev    next >
Text File  |  1993-08-31  |  2KB  |  49 lines

  1. Received: by bkhouse.cts.com (V1.16/Amiga)
  2.     id AA00000; Sun, 13 Jun 93 19:47:01 PST
  3. Received: from peladon.rmit.OZ.AU by crash.cts.com with smtp
  4.     (Smail3.1.28.1 #15) id m0o53DX-0000M0C; Sun, 13 Jun 93 18:20 PDT
  5. Received: from minyos.xx.rmit.OZ.AU by peladon.rmit.OZ.AU with SMTP id AA17063
  6.   (5.65c/IDA-1.4.4 for <amigae@bkhouse.cts.com>); Mon, 14 Jun 1993 11:20:05 +1000
  7. Received: by minyos.xx.rmit.oz.au
  8. Message-Id: <9306140120.11165@minyos.xx.rmit.oz.au>
  9. Date: Mon, 14 Jun 1993 11:20:08 +1000 (EST)
  10. X-Mailer: ELM [version 2.4 PL22]
  11. Mime-Version: 1.0
  12. Content-Type: text/plain; charset=US-ASCII
  13. Content-Transfer-Encoding: 7bit
  14. Content-Length: 1359
  15. From: s924723@minyos.xx.rmit.OZ.AU (Son Huu Le)
  16. To: amigae@bkhouse.cts.com
  17. Subject: Reply to various things
  18.  
  19.  
  20. To james,
  21.  
  22. Firstly, I'm not sure if the SIZEOF drawinfo=NONE!! would affect it but I
  23. modified mine *grin* and if you want it, I'm email it. The problem I think
  24. is that you haven't DEFined pens to be (PTR) ARRAY OF *INT*. I tried your
  25. example and it worked fine.
  26.  
  27. To Barry and others,
  28.  
  29. I understand {var} and ^var for variables containing numbers, but if the
  30. variable contained a string, passing it as {var}, you can't access it as ^var
  31. but just var (if I remember correctly). However, you can't modify the var
  32. (eg. var:='Hello') but must set x:=^var, then x:='Hello' will return the new
  33. var when you get back (I'm not too certain about what I've just wrote, like
  34. I said to Barry, I'm shaky about passing {var}). This is roughly the case
  35. with numbers and strings.. (anybody, correct me if I'm wrong!) but what
  36. about Lists and Linked lists? How do you access them and how do you change
  37. them permanently? And how about when var=New()?
  38.  
  39. Oops.. mistake already. x:=^var, x:='Hello', ^var:=x. Why didn't I do
  40. ^var:='Hello'? Good question! I forgot! Can you WriteF('\s',^var)? There's
  41. a reason why I do it the former way.. that's how I currently do it, just
  42. forgot why?
  43.  
  44. Hint (actually more of a warning): If you're using SELECT..CASE make sure
  45. all your IFs have a matching ENDIF (THEN) coz at compile time, EC would
  46. say incoherent program, it gurus!
  47.  
  48. Bye!
  49. Son Le